home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / comm / term / TEXT2SCP.lha / text2scp.doc < prev    next >
Text File  |  1993-08-03  |  2KB  |  57 lines

  1. This  is  a  small  update to ascii2scp which wouldn't properly handle escape
  2. codes in the source file.
  3.  
  4. There  isn't much to this, so I see no reason to have a long doc file.  After
  5. reading  complaints  on  Internet  from  some people who didn't like doing an
  6. ASCII  send  to  upload  their  signature  files, I decided to crank out this
  7. little  program.   All it does is take a regular text file and turn it into a
  8. Terminus  script  file.   It ignores the CR characters, and starts a new line
  9. whenever  a  LF is found.  This is normal for Amiga text editors such as CED,
  10. and  will also properly convert IBM type text files that end each line with a
  11. CR-LF sequence.  For instance, the following text:
  12.  
  13. This is an example of what the text could be.
  14. It can include the ", \, and ' characters as well,
  15. and text2scp will prepend them with an extra \ so
  16. they are interpreted properly by Terminus.
  17.  
  18. into:
  19.  
  20. /* Terminus Script File */
  21. /* Created with TEXT2SCP by Don Lester */
  22. SEND "This is an example of what the text could be.\r"
  23. SEND "It can include the \", \\, and \' characters as well,\r"
  24. SEND "and text2scp will prepend them with an extra \\ so\r"
  25. SEND "they are interpreted properly by Terminus.\r"
  26. /* End of TEXT2SCP script */
  27.  
  28. Pretty  straightforward.   The  proper usage is to have text2scp somewhere in
  29. your path (or current directory) and type:
  30.  
  31. text2scp path:textfile path:scriptfile
  32.  
  33. where  textfile is the file you want converted, and scriptfile is the name of
  34. the  script  file  you  wish to have created.  For instance, if you created a
  35. file  called  signature.txt in RAM that you wanted to use as a signature, the
  36. following command line would accomplish what you wanted:
  37.  
  38. text2scp ram:signature.txt terminus:scripts/signature.scp
  39.  
  40. The  output  file,  signature.scp,  can  now be assigned to a function key by
  41. going  to  the  pulldown menu [SETTINGS][MACROS] and typing the following for
  42. whichever key you want it assigned to:
  43.  
  44. !&signature.scp
  45.  
  46. That  is  about  it.   If  you  wish  to contact me for some reason, I can be
  47. reached at:
  48.  
  49. Internet:  dlester@eecs.wsu.edu
  50.  
  51. Fidonet:   1:344/87 (Don Lester)
  52.  
  53. Regular Mail (some people still use it):    Don Lester
  54.                                             NW 205 Larry #16
  55.                                             Pullman, WA  99163
  56.  
  57.